home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1996 April: Mac OS SDK / Dev.CD Apr 96 SDK / Dev.CD Apr 96 SDK1.toast / Development Kits (Disc 1) / OpenDoc / Sample Code / Sample Editors⁄Viewers / Sound Editor / Source / SESettingsExtension.h < prev    next >
Encoding:
C/C++ Source or Header  |  1995-12-11  |  986 b   |  45 lines  |  [TEXT/MPS ]

  1. /*
  2.     File:        SESettingsExtension.h
  3.  
  4.     Contains:    SoundEditor Settings Extension class interface
  5.  
  6.     Written by:    Steve Smith
  7.  
  8.     Copyright:    © 1995 by Apple Computer, Inc., all rights reserved.
  9. */
  10.  
  11. #ifndef _SESETTINGSEXTENSION_
  12. #define _SESETTINGSEXTENSION_
  13.  
  14. #ifndef _ODTYPES_
  15. #include <ODTypes.h>
  16. #endif
  17.  
  18. //------------------------------------------------------------------------------
  19. // Forward declarations
  20. //------------------------------------------------------------------------------
  21.  
  22. class SoundEditor;
  23.  
  24. //------------------------------------------------------------------------------
  25. // SESettingsExtension
  26. //------------------------------------------------------------------------------
  27.  
  28. class SESettingsExtension
  29. {
  30.     //===================
  31.     public:
  32.     
  33.     SESettingsExtension();
  34.     ~SESettingsExtension();
  35.     
  36.     void    InitSettingsExtension(Environment* ev, ODPart* owner);
  37.     void    ShowSettings(Environment* ev, ODFacet* facet);
  38.         
  39.     //===================
  40.     private:
  41.     
  42.     SoundEditor*    fOwner;
  43. };
  44.  
  45. #endif